Replace a bash-specific redirection in tools/ioemu/configure with a
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Fri, 5 May 2006 12:58:13 +0000 (13:58 +0100)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Fri, 5 May 2006 12:58:13 +0000 (13:58 +0100)
standard POSIX one which allows the Xen tools to be built with a POSIX
shell other than bash.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
tools/ioemu/configure

index b4bf85cf5140d6c335a4a1bdd7df511379cddd03..087fc5a9cecbc32c23456aea0d726b2f056f5d43 100755 (executable)
@@ -230,7 +230,7 @@ fi
 
 if test -z "$vnc"; then
 
-if libvncserver-config --version >& /dev/null; then
+if libvncserver-config --version > /dev/null 2>&1; then
     vnc=yes
 else
     vnc=no